home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Visual Basic new SourceCode and Projects / Adventure game / frmAbout.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-05-12  |  3.0 KB  |  99 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BorderStyle     =   3  'Fixed Dialog
  4.    Caption         =   "About AGC"
  5.    ClientHeight    =   3555
  6.    ClientLeft      =   2340
  7.    ClientTop       =   1935
  8.    ClientWidth     =   5535
  9.    ClipControls    =   0   'False
  10.    Icon            =   "frmAbout.frx":0000
  11.    LinkTopic       =   "Form2"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   2453.724
  15.    ScaleMode       =   0  'User
  16.    ScaleWidth      =   5197.651
  17.    ShowInTaskbar   =   0   'False
  18.    StartUpPosition =   2  'CenterScreen
  19.    Begin VB.PictureBox Picture1 
  20.       BackColor       =   &H00000000&
  21.       Height          =   975
  22.       Left            =   120
  23.       ScaleHeight     =   915
  24.       ScaleWidth      =   1155
  25.       TabIndex        =   4
  26.       Top             =   120
  27.       Width           =   1215
  28.       Begin VB.Image Image1 
  29.          Height          =   900
  30.          Left            =   0
  31.          Picture         =   "frmAbout.frx":0742
  32.          Stretch         =   -1  'True
  33.          Top             =   0
  34.          Width           =   1140
  35.       End
  36.    End
  37.    Begin VB.CommandButton cmdOK 
  38.       Cancel          =   -1  'True
  39.       Caption         =   "OK"
  40.       Default         =   -1  'True
  41.       Height          =   345
  42.       Left            =   4080
  43.       TabIndex        =   0
  44.       Top             =   3000
  45.       Width           =   1260
  46.    End
  47.    Begin VB.Line Line1 
  48.       BorderColor     =   &H00808080&
  49.       BorderStyle     =   6  'Inside Solid
  50.       Index           =   1
  51.       X1              =   112.686
  52.       X2              =   5113.137
  53.       Y1              =   1905.001
  54.       Y2              =   1905.001
  55.    End
  56.    Begin VB.Label lblDescription 
  57.       Caption         =   "Create text based adventure games with AGC!"
  58.       ForeColor       =   &H00000000&
  59.       Height          =   210
  60.       Left            =   1560
  61.       TabIndex        =   1
  62.       Top             =   1125
  63.       Width           =   3285
  64.    End
  65.    Begin VB.Label lblTitle 
  66.       Caption         =   "Adventure Game Creator"
  67.       ForeColor       =   &H00000000&
  68.       Height          =   240
  69.       Left            =   1560
  70.       TabIndex        =   2
  71.       Top             =   240
  72.       Width           =   1845
  73.    End
  74.    Begin VB.Line Line1 
  75.       BorderColor     =   &H00FFFFFF&
  76.       BorderWidth     =   2
  77.       Index           =   0
  78.       X1              =   112.686
  79.       X2              =   5070.879
  80.       Y1              =   1905.001
  81.       Y2              =   1905.001
  82.    End
  83.    Begin VB.Label lblVersion 
  84.       Caption         =   "Version 1.0"
  85.       Height          =   225
  86.       Left            =   1560
  87.       TabIndex        =   3
  88.       Top             =   720
  89.       Width           =   885
  90.    End
  91. Attribute VB_Name = "frmAbout"
  92. Attribute VB_GlobalNameSpace = False
  93. Attribute VB_Creatable = False
  94. Attribute VB_PredeclaredId = True
  95. Attribute VB_Exposed = False
  96. Private Sub cmdOK_Click()
  97. frmAbout.Hide
  98. End Sub
  99.